home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscProgressPalette / MiscProgressViewInspector.h < prev    next >
Text File  |  1995-04-12  |  872b  |  31 lines

  1. //
  2. //    MiscProgressViewInspector.h -- a simple view class for displaying progress
  3. //        Written originally by Don Yacktman Copyright (c) 1993 by James Heiser.
  4. //                This file is maintained by James Heiser, jheiser@adobe.com.
  5. //                Version 1.0.  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15.  
  16. #import <appkit/appkit.h>
  17. #import <apps/InterfaceBuilder.h>
  18.  
  19. @interface MiscProgressViewInspector:IBInspector <IBInspectors>
  20. {
  21.     id    stepText;
  22.     id    stepSlider;
  23.     id  backgroundColorWell;
  24.     id  foregroundColorWell;
  25.     id  borderColorWell;
  26. }
  27.  
  28. - init;
  29.  
  30. @end
  31.